fb5894b25e8a85207c94817db1548dde69e099a3,src/ProjectIrisKellermann/ObserverPipeline.java,ObserverPipeline,main,#String#,16

Before Change


		
		//test and create ROC curve
		
		Grid2D[] testImages = model.CreateTestModels(Ntest, VariationType.ProjectionWrongPoisson);
        Grid2D[] emptyTestImages = model.CreateEmptyImages(Ntest, VariationType.ProjectionWrongPoisson);  
		
		ROC.ShowROC(testImages, emptyTestImages, Ntest, template, channelMatrix);		

After Change


	{
		int imageSize = 200;
		int Ntrain = 10;
		int Ntest = 20;
		int channelCount = 10;
		double gaussValue = 50;
		
		//the model
		Model model = new Model(imageSize, imageSize);
		
		//the different object-present images
		Grid2D[] trainModels = model.CreateTestModels(Ntrain, VariationType.SimpleVariation);
		
		//the different background images
		Grid2D[] emptyTrainImages = model.CreateEmptyImages(Ntrain, VariationType.SimpleVariation);